Skip to main content
POST
/
localauth
/
register
Local | Register User
curl --request POST \
  --url https://use.hoop.dev/api/localauth/register \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "name": "<string>",
  "password": "<string>"
}
'
{
  "message": "the error description"
}

Headers

Token
string

The access token generated after successful registration

Body

application/json

The request body resource

email
string
required
password
string
required
name
string

Response

Created

message
string
Example:

"the error description"